Core Concept
Hamid
fullstack developerthis is how โโ
your css
:root {
--primary-color: #66cc99;
}
.primary {
color: var(--primary);
}
your js
function changeTheme() {
const newColor = '#112233';
document.body.style.setProperty('--primary-color', newColor);
}